home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00188_Script_188 < prev    next >
Text File  |  1994-06-29  |  422b  |  17 lines

  1. -- This handler pauses for length of time assigned to 
  2. -- the variable pauseduration. The startTimer command from the previous frame
  3. -- script sets the timer to zero. The repeat loops on the frame
  4. -- until the timer reaches the value of pauseduration.
  5.  
  6. on exitFrame
  7.   global pauseduration
  8.   
  9.   if the timer < pauseduration then
  10.     go to the frame
  11.   else 
  12.     go to marker (1)
  13.   end if
  14.   
  15.   
  16. end exitFrame
  17.